html,
body {
    margin: 0;
    padding: 0;
    width: 100%;   
}
/* Hide dropdown by default */

  .dropdown {
  display: none;
}

.dropdown.active {
  display: block;
}

.dropdown {
  display: none;
  flex-direction: column;
  background-color: white; /* or your desired color */
  position: absolute;
  z-index: 1000;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
  padding: 10px;
}

/* Show when active */
.dropdown.active {
  display: flex;
}

/* Optional: improve button styling */
.dropdown-button {
  background: none;
  border: none;
  font-size: 1rem;
  cursor: pointer;
  padding: 10px;
}

/* Optional: style dropdown links */
.dropdown a {
  padding: 5px 10px;
  text-decoration: none;
  color: black;
}

.dropdown a:hover {
  background-color: #f0f0f0;
}


.dropdown.active {
  display: block;
}
.dropdown-menu {
  display: none;
  transition: all 0.3s ease;
}

.dropdown-menu.open {
  display: block;
}

.screen {
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    overflow-x: hidden;
}

.container {
    position: fixed;
    top: 0px;
    left: 0px;
    right: 0px;
    padding: 10px;
    display: flex;
    margin: 40px 50px 40px 50px;
    justify-content: space-between;
    align-items: center;
    flex-direction: row;
    align-items: center;
}



@media screen and (max-width: 1024px) {
    .container {
        position: fixed;
        top: 0px;
        left: 0px;
        right: 0px;
        display: flex;
        margin: 10px 28px 28px 28px;
        justify-content: space-between;
        align-items: center;
        padding: 10px 10px;
    }

    nav .logo img {
        margin-left: 10px;
    }

    nav .links a {
        font-size: 0.9rem;
    }
}

nav {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 1rem;
    margin: 0 auto;
    background: hsl(205deg 0% 0% / 0.1);
  backdrop-filter: blur(9px) brightness(1.1);
  border-radius: 100vw;
    z-index: 12;
    /* background-color: rgba(255, 255, 255, 0.3); */
    padding: 10px;
    border-radius: 20px;
    backdrop-filter: blur(30px);
    /* box-shadow: 0px 0px 135px rgba(0, 0, 0, 0.45); */
    box-shadow: 
    0 4px 20px hsl(205deg 50% 30% / 0.15),
    0 4px 10px hsl(205deg 30% 10% / 0.075),
    inset 0 -4px 15px 6px hsl(205deg 70% 90% / 0.2),
    inset 0 -2px 5px hsl(205deg 70% 90% / 0.15),
    inset 0 -1px 1px hsl(205deg 70% 90% / 0.4),
    inset 0 10px 15px hsl(205deg 30% 10% / 0.2),
    inset 0 1px 2px hsl(205deg 70% 90% / 0.3);
    border: 1px solid rgba(255, 255, 255, 0.2);
    animation: nav 1s cubic-bezier(0.9, 0.02, 0.19, 1);
}



@keyframes nav {
    from {
        transform: translateY(-150%);
    }

    to {
        transform: translateY(0);
    }
}

nav .logo img {
    height: 50px;
    width: auto;
    margin: 0px 10px;
}


nav .links {
    display: flex;
    gap: 60px;
    list-style: none;
    justify-content: center;
    align-items: center;
  
}


nav .links a {
    color: white;
    text-decoration: none;
    cursor: pointer;
    font-weight: 400;
    text-transform: uppercase;
    font-size: 0.9rem;
    display: block;
}

nav li {
    overflow: hidden;
    transition: 0.5s cubic-bezier(0.97, 0.02, 0.44, 0.99);
}

.links2{
    display: none;
    border: 1px solid #ccc;
    padding: 10px;
    padding:5px;
  
}
@media (max-width: 600px) {
    .container {
        max-width: 88% !important;
    }
    
}
@media (min-width: 1024px) {
    .container {
        max-width: 93% !important;
    }
} 


.dropdown {
  display: none;
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.2);
   background: hsl(0, 0%, 0%);
     box-shadow: 
    0 4px 20px hsl(205deg 50% 30% / 0.15),
    0 4px 10px hsl(205deg 30% 10% / 0.075),
    inset 0 -4px 15px 6px hsl(205deg 70% 90% / 0.2),
    inset 0 -2px 5px hsl(205deg 70% 90% / 0.15),
    inset 0 -1px 1px hsl(205deg 70% 90% / 0.4),
    inset 0 10px 15px hsl(205deg 30% 10% / 0.2),
    inset 0 1px 2px hsl(205deg 70% 90% / 0.3);
  padding: 10px;
  margin-top: 45px;
  border-radius: 16px;
  font-family: "Palanquin Dark", sans-serif;
  backdrop-filter: blur(10px); 
  -webkit-backdrop-filter: blur(10px); 
  backdrop-filter: blur(20px); 
  -webkit-backdrop-filter: blur(20px); 
  z-index: 1000;
  min-width: 280px;
}

/* Dropdown link style */
.dropdown a {
  display: flex;
  align-items: center;
  color: #ffffff; 
  text-decoration: none;
  padding: 10px;
  border-radius: 8px;
  transition: background 0.2s ease;
}


/* Hover effect */
.dropdown a:hover {
  background: rgba(255, 255, 255, 0.1);
}




.dropdown.show {
  display: block;
}
.dropdown a{
    padding: 2px 2px;
}

.dropdown-button {
  cursor: none;
  background-color: transparent;
  font-size:0.9rem;
  font-weight: 400;
  text-transform: uppercase;
  color: white;
  border: none;
  display: inline-block;
  margin: 0px;
  box-shadow: none;
  
}

.dropdon-button {
    cursor: pointer;
    background-color: transparent;
    font-size:0.9rem;
    font-weight: 400;
    text-transform: uppercase;
    color: white;
    border: none;
    display: inline-block;
    margin: 0px;
    box-shadow: none;
    
}

.dropdown.active{
    display: block; 
    width: 200px;
    transform: scaleY(1);
    visibility: visible;
    padding: 5px;
    height: fit-content;
     background-color: rgba(0, 0, 0, 0.934);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  z-index: 10000;
}

/* fallback for older browsers */
@supports not ((-webkit-backdrop-filter: blur(10px)) or (backdrop-filter: blur(10px))) {
  .dropdown-menu {
    background-color: white; /* fallback */
  }
}
   

.home_underline {
    transform: translateX(-110px);
    width: auto;
    height: 2px;
    background-color: white;
    transition: 0.5s cubic-bezier(0.97, 0.02, 0.44, 0.99);
}

.list:hover .home_underline {
    transform: translatex(0px);
}


@keyframes btnshine {
    from {
        transform: skewX(40deg) translateX(-90px);
    }

    to {
        transform: skewX(40deg) translateX(100px);
    }
}

#nav-toggle {
    position: absolute;
    display: none;
}

nav .icon-burger {
    position: absolute;
    right: 5%;
}

nav .icon-burger .line {
    width: 30px;
    height: 4px;
    background-color: white;
    margin: 5px;
    border-radius: 5px;
}


@media screen and (min-width:769px) {
    .HR-line {
        display: none;
    }

    nav .icon-burger{
        display: none;
    }
}


@media screen and (min-width:468px) and (max-width:767px) {
    nav .icon-burger {
    padding-right: 0px;
    }
    .HR-line{
        width: 200px;
    }
}


@media screen and (max-width: 768px) {

    .container{
        width: 90vw;
        height: max-content;
        z-index: 300;
    }
    nav {
        flex-direction: column;
    }

    nav li {
        margin-top: -5px;
    }

    ul {
        text-align: center;
        padding: 0%;
    }

    nav .logo {
        z-index: 99;
    }

    nav .logo img {
        position: static;
        height: 55px;
        max-width: 75px;
    }

    .container {
        margin: 30px 10px 30px 30px;
    }


    .HR-line {
        width: 230px;
        height: 2px;
        color: #fbfbfb;
        background-color: white;
        border: none;
    }
    


    nav .links {
        display: none;
    }

    .small-links {
  max-width: 0vw;
  opacity: 0;
  pointer-events: none;
  visibility: hidden;         /* 👈 New: hide from layout */
  position: absolute;         /* 👈 Prevent layout interference */
  transition: all 0.4s cubic-bezier(0.97, 0.02, 0.44, 0.99);
}

.small-links.active {
  max-width: auto;
  opacity: 1;
  pointer-events: auto;
  visibility: visible;        /* 👈 Show when active */
  position: fixed;            /* 👈 Fix position to top layer */
  top: 20vh;
  left: 25vw;
  z-index: 9999;              /* 👈 Ensure above content */
}
.small-links:not(.active) a {
  pointer-events: none;
}


    .links2{
        display: flex;
        flex-direction: column;
        position: fixed;
        width: 50vw;
        z-index: 15;
        top: 20vh;
        left: 25vw;
        align-items: flex-start;
        padding:0px 0px;
        background-color: rgb(98, 98, 98,  0.9);
        backdrop-filter: blur(20px) !important;
        overflow: hidden;
        transition: 0.5s cubic-bezier(0.97, 0.02, 0.44, 0.99);
        justify-content: center;
        align-items: center;
        border-radius: 20px; 

    }


    .links2 li{
        list-style: none;
        padding: 10px 0px;
    }
    .links2 a {
        font-size: 1.2rem;
        color: white;
        font-weight: 300;
        text-decoration: none;
        text-transform: uppercase;
    }
    .nav-btn{
        border: none;
        font-family: "Times New Roman", Times, serif;
        font-size: 1rem;
        color: white;
        background-color: #eeb300;
        border-radius: 100px;
        padding: 10px 30px 10px 30px;
        margin: 20px 0px;
    }

    .home_underline {
        display: none;
    }

    .dropdown-button {
        font-size: 1.2rem;
        font-weight: 300;
        text-transform: uppercase;
    }
    .dropdon-button{
      font-size: 1.2rem;
        font-weight: 300;
        text-transform: uppercase;
    }


    .dropdown a{
        
        font-size: 0.8rem;
    }

    nav .icon-burger {

        margin-top: 0px;

    }

    nav .icon-burger .line {
        transition: 0.3s cubic-bezier(0.97, 0.02, 0.44, 0.99);
        width: 35px;
        height: 5px;
    }

    .icon-burger.active .line:nth-child(1) {
        transform: translateY(9px) rotate(50deg);
    }

    .icon-burger.active .line:nth-child(2) {
        transform: translateX(10px);
        opacity: 0;
    }

    .icon-burger.active .line:nth-child(3) {
        transform: translateY(-9px) rotate(-50deg);
    }
}

@media screen and (min-width: 1050px) and (max-width: 1994px) {
    .home_underline {
        transform: translateX(-145px);
    }
}

@media only screen and (min-width:990px) and (max-width:1024px) {


    nav {
        flex-direction: column;
    }

    nav li {
        display: block;
        padding: 10px 0;
    }

    ul {
        text-align: center;
        padding: 0%;
        display: none;
    }


    .container {
        margin: 30px 30px 40px 30px
    }
}




@media screen and (max-width: 540px) {
    .links2{
       width: 84vw;
        left: 8vw;
        z-index: 300;
    }
    
}

@media screen and (max-width: 468px) {


    nav .logo img {
        max-width: 110px;
        height: 55px;
    }

    nav .icon-burger {
        margin: 10px 0px;
        padding: 1px;
    }
    

   .links2 a {
    font-size: 0.9rem;
    padding: 10px;
    }

    nav .links a {
        font-size: 1rem;
        font-weight: 300;
    }

    .container {
        width: 90vw;
        margin: 30px auto;

    }

    .HR-line {
        width: 200px;
    }

    nav .icon-burger .line {
        width: 30px;
        height: 5px;
    }
    .dropdown{
      position: relative;
      margin-top: 15px;
      width: 250px;
    }

}



.button-wrap {
    position: relative;
    z-index: 2;
    border-radius: 999vw;
    background: transparent;
    pointer-events: none;
    transition: all var(--anim--hover-time) var(--anim--hover-ease);
  }
  
  .button-wrap button:hover {
    background: linear-gradient(
      135deg,
      rgb(255, 255, 255)
    ) !important;
    box-shadow:
      0 0.25em 0.125em -0.125em rgba(255, 255, 0, 0.5),
  }

  .button-wrap, .button-wrap * {
    text-decoration: none;
  }
  
  .button-wrap button:hover span {
    color: #000 !important;
  }
  
  .button-wrap button {
    --border-width: clamp(1px, 0.0625em, 4px);
    all: unset;
    cursor: pointer;
    position: relative;
    pointer-events: auto;
    z-index: 3;
    background: linear-gradient(-75deg,
      rgba(255, 255, 255, 0.05),
      rgba(255, 255, 255, 0.2),
      rgba(255, 255, 255, 0.05));
    border-radius: 999vw;
    box-shadow: inset 0 0.125em 0.125em rgba(0, 0, 0, 0.05),
      inset 0 -0.125em 0.125em rgba(255, 255, 255, 0.5),
      0 0.25em 0.125em -0.125em rgba(0, 0, 0, 0.2),
      0 0 0.1em 0.25em inset rgba(255, 255, 255, 0.2),
      0 0 0 0 rgba(255, 255, 255, 1);
    backdrop-filter: blur(clamp(1px, 0.125em, 4px));
    transition: all var(--anim--hover-time) var(--anim--hover-ease);
  }
  
  .button-wrap button span {
    position: relative;
    display: block;
    user-select: none;
    font-family: "Inter", sans-serif;
    letter-spacing: -0.05em;
    font-weight: 500;
    font-size: 1em;
    color: rgb(0, 0, 0);
    text-shadow: 0em 0.25em 0.05em rgba(0, 0, 0, 0.1);
    transition: all var(--anim--hover-time) var(--anim--hover-ease);
    padding-inline: 1.5em;
    padding-block: 0.875em;
    color: #fff;
  }

  /* From Uiverse.io by ilkhoeri */ 
.button {
  --h-button: 48px;
  --w-button: 102px;
  --round: 0.75rem;
  cursor: pointer;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition: all 0.25s ease;
  background: radial-gradient(
      65.28% 65.28% at 50% 100%,
      rgba(223, 113, 255, 0.8) 0%,
      rgba(223, 113, 255, 0) 100%
    ),
    linear-gradient(0deg, #7a5af8, #7a5af8);
  border-radius: var(--round);
  border: none;
  outline: none;
  padding: 12px 18px;
}
.button::before,
.button::after {
  content: "";
  position: absolute;
  inset: var(--space);
  transition: all 0.5s ease-in-out;
  border-radius: calc(var(--round) - var(--space));
  z-index: 0;
}
.button::before {
  --space: 1px;
  background: linear-gradient(
    177.95deg,
    rgba(255, 255, 255, 0.19) 0%,
    rgba(255, 255, 255, 0) 100%
  );
}
.button::after {
  --space: 2px;
  background: radial-gradient(
      65.28% 65.28% at 50% 100%,
      rgba(223, 113, 255, 0.8) 0%,
      rgba(223, 113, 255, 0) 100%
    ),
    linear-gradient(0deg, #7a5af8, #7a5af8);
}
.button:active {
  transform: scale(0.95);
}

.fold {
  z-index: 1;
  position: absolute;
  top: 0;
  right: 0;
  height: 1rem;
  width: 1rem;
  display: inline-block;
  transition: all 0.5s ease-in-out;
  background: radial-gradient(
    100% 75% at 55%,
    rgba(223, 113, 255, 0.8) 0%,
    rgba(223, 113, 255, 0) 100%
  );
  box-shadow: 0 0 3px black;
  border-bottom-left-radius: 0.5rem;
  border-top-right-radius: var(--round);
}
.fold::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 150%;
  height: 150%;
  transform: rotate(45deg) translateX(0%) translateY(-18px);
  background-color: #ffffff;
  pointer-events: none;
}
.button:hover .fold {
  margin-top: -1rem;
  margin-right: -1rem;
}

.points_wrapper {
  overflow: hidden;
  width: 100%;
  height: 100%;
  pointer-events: none;
  position: absolute;
  z-index: 1;
}

.points_wrapper .point {
  bottom: -10px;
  position: absolute;
  animation: floating-points infinite ease-in-out;
  pointer-events: none;
  width: 2px;
  height: 2px;
  background-color: #ffffff;
  border-radius: 9999px;
}
@keyframes floating-points {
  0% {
    transform: translateY(0);
  }
  85% {
    opacity: 0;
  }
  100% {
    transform: translateY(-55px);
    opacity: 0;
  }
}
.points_wrapper .point:nth-child(1) {
  left: 10%;
  opacity: 1;
  animation-duration: 2.35s;
  animation-delay: 0.2s;
}
.points_wrapper .point:nth-child(2) {
  left: 30%;
  opacity: 0.7;
  animation-duration: 2.5s;
  animation-delay: 0.5s;
}
.points_wrapper .point:nth-child(3) {
  left: 25%;
  opacity: 0.8;
  animation-duration: 2.2s;
  animation-delay: 0.1s;
}
.points_wrapper .point:nth-child(4) {
  left: 44%;
  opacity: 0.6;
  animation-duration: 2.05s;
}
.points_wrapper .point:nth-child(5) {
  left: 50%;
  opacity: 1;
  animation-duration: 1.9s;
}
.points_wrapper .point:nth-child(6) {
  left: 75%;
  opacity: 0.5;
  animation-duration: 1.5s;
  animation-delay: 1.5s;
}
.points_wrapper .point:nth-child(7) {
  left: 88%;
  opacity: 0.9;
  animation-duration: 2.2s;
  animation-delay: 0.2s;
}
.points_wrapper .point:nth-child(8) {
  left: 58%;
  opacity: 0.8;
  animation-duration: 2.25s;
  animation-delay: 0.2s;
}
.points_wrapper .point:nth-child(9) {
  left: 98%;
  opacity: 0.6;
  animation-duration: 2.6s;
  animation-delay: 0.1s;
}
.points_wrapper .point:nth-child(10) {
  left: 65%;
  opacity: 1;
  animation-duration: 2.5s;
  animation-delay: 0.2s;
}

.inner {
  z-index: 2;
  gap: 6px;
  position: relative;
  width: 100%;
  color: rgb(255, 255, 255);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
  transition: color 0.2s ease-in-out;
}

.inner svg.icon {
  width: 18px;
  height: 18px;
  transition: fill 0.1s linear;
}

.button:focus svg.icon {
  fill: rgb(253, 253, 253);
}
.button:hover svg.icon {
  fill: transparent;
  animation:
    dasharray 1s linear forwards,
    filled 0.1s linear forwards 0.95s;
}
@keyframes dasharray {
  from {
    stroke-dasharray: 0 0 0 0;
  }
  to {
    stroke-dasharray: 68 68 0 0;
  }
}
@keyframes filled {
  to {
    fill: white;
  }
}
 .ai-mobile-btn {
    display: none;
  }

  .innerendu {
    z-index: 2;
    gap: 6px;
    position: relative;
    width: 100%;
    color: rgb(255, 255, 255);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.5;
    transition: color 0.2s ease-in-out;
    margin-right: 14px;
}

  @media screen and (max-width: 768px) {
    .ai-mobile-btn {
      display: flex;
      align-items: center;
      margin-left: auto;
      margin-right: 64px;
    }
    .ai-mobile-btn .button {
      font-size: 0.8rem;
      padding: 0.5rem;
    }
  }
